The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "sys::syscall"

Sys::Syscall - access system calls that Perl doesn't normally provide access to River stage two • 3 direct dependents • 34 total dependents

Use epoll, sendfile, from Perl. Mostly Linux-only support now, but more syscalls/OSes planned for future....

BRADFITZ/Sys-Syscall-0.25 - 17 Dec 2012 01:46:47 UTC - Search in distribution

Sys::Linux::Syscall::Execve - A raw execve() wrapper that preserves memory addresses River stage one • 1 direct dependent • 1 total dependent

Due to changes in how exec() works in the upcoming 5.28 to fix [perl #129888] I can no longer expect exec() to preserve the memory address of the arguments provided to it. Why this weird requirement? It's because I need to preserve that address in or...

SIMCOP/Sys-Linux-Syscall-Execve-0.12 - 10 Mar 2018 18:55:43 UTC - Search in distribution

Sys::Linux::Mount - Bindings for the linux mount syscall. River stage one • 1 direct dependent • 1 total dependent

SIMCOP/Sys-Linux-Namespace-0.016 - 23 Jun 2018 07:28:30 UTC - Search in distribution

libev - a high performance full-featured event loop written in C River stage two • 71 direct dependents • 86 total dependents

MLEHMANN/EV-4.34 - 08 Oct 2023 21:47:52 UTC - Search in distribution

perldiag - various Perl diagnostics River stage five • 11693 direct dependents • 33184 total dependents

These messages are classified as follows (listed in increasing order of desperation): (W) A warning (optional). (D) A deprecation (enabled by default). (S) A severe warning (enabled by default). (F) A fatal error (trappable). (P) An internal error yo...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC - Search in distribution

perlfunc - Funciones predefinidas en Perl *** DOCUMENTO SIN REVISAR *** River stage zero No dependents

ENELL/POD2-ES-5.24.0.5 - 01 Jan 2017 21:24:12 UTC - Search in distribution

perlfaq5 - Files and Formats River stage zero No dependents

This section deals with I/O and the "f" issues: filehandles, flushing, formats, and footers. How do I flush/unbuffer an output filehandle? Why must I do this? (contributed by brian d foy) You might like to read Mark Jason Dominus's "Suffering From Bu...

ETHER/perlfaq-5.20240218 - 18 Feb 2024 17:37:36 UTC - Search in distribution

IT::perlfunc River stage zero No dependents

ENRYS/POD2-IT-0.13 - 26 Aug 2009 16:35:44 UTC - Search in distribution

IO::AIO - Asynchronous/Advanced Input/Output River stage two • 11 direct dependents • 16 total dependents

This module implements asynchronous I/O using whatever means your operating system supports. It is implemented as an interface to "libeio" (<http://software.schmorp.de/pkg/libeio.html>). Asynchronous means that operations that can normally block your...

MLEHMANN/IO-AIO-4.81 - 20 Feb 2024 06:41:07 UTC - Search in distribution

Linux::Smaps - a Perl interface to /proc/PID/smaps River stage one • 2 direct dependents • 3 total dependents

The /proc/PID/smaps files in modern linuxes provides very detailed information about a processes memory consumption. It particularly includes a way to estimate the effect of copy-on-write. This module implements a Perl interface. The content of the s...

AERUDER/Linux-Smaps-0.14 - 20 May 2020 12:56:22 UTC - Search in distribution

Linux::Info - API in Perl to recover information about the running Linux OS River stage one • 2 direct dependents • 3 total dependents

Linux::Info is a fork from Sys::Statistics::Linux distribution. Sys::Statistics::Linux is a front-end module and gather different linux system information like processor workload, memory usage, network and disk statistics and a lot more. Refer the do...

ARFREITAS/Linux-Info-2.01 - 17 May 2024 18:51:07 UTC - Search in distribution

Linux::Epoll - O(1) multiplexing for Linux River stage one • 2 direct dependents • 3 total dependents

Epoll is a multiplexing mechanism that scales up O(1) with number of watched files. Linux::Epoll is a callback style epoll module, unlike other epoll modules available on CPAN. Types of events * in The associated filehandle is available for reading. ...

LEONT/Linux-Epoll-0.019 - 27 Jan 2024 20:11:11 UTC - Search in distribution

IO::Vectored - Read from or write to multiple buffers at once River stage zero No dependents

Vectored-IO is sometimes called "scatter-gather" IO. The idea is that instead of doing multiple read(2) or write(2) system calls for each string, your program creates a vector of pointers to all the strings you wish to read/write and then does a sing...

FRACTAL/IO-Vectored-0.110 - 30 Oct 2014 04:20:23 UTC - Search in distribution

Config::Model::models::Systemd::Section::Service - Configuration class Systemd::Section::Service River stage zero No dependents

Configuration classes used by Config::Model A unit configuration file whose name ends in ".service" encodes information about a process controlled and supervised by systemd. This man page lists the configuration options specific to this unit type. Se...

DDUMONT/Config-Model-Systemd-0.254.1 - 24 Nov 2023 17:24:37 UTC - Search in distribution

Unix::Mknod - Perl extension for mknod, major, minor, and makedev River stage two • 2 direct dependents • 20 total dependents

This module allows access to the device routines major()/minor()/makedev() that may or may not be macros in .h files. It also allows access to the mknod(2) system call....

PIRZYK/Unix-Mknod-0.05 - 28 Nov 2023 22:50:55 UTC - Search in distribution

share::Synopsis::S29-functions River stage one • 2 direct dependents • 2 total dependents

HINRIK/Perl6-Doc-0.47 - 06 Dec 2010 03:25:27 UTC - Search in distribution

SPVM::Sys - System Calls for File IO, Sockets, Time, Process, Signals, Users River stage two • 8 direct dependents • 12 total dependents

The Sys class in SPVM has methods to call system calls for file IO, sockets, user manipulation, process manipulation, and time....

KIMOTO/SPVM-Sys-0.514001 - 27 Mar 2024 02:45:54 UTC - Search in distribution

Sys::Binmode - A fix for Perl’s system call character encoding River stage zero No dependents

tl;dr: Use this module in all new code....

FELIPE/Sys-Binmode-0.05 - 20 Jul 2023 15:50:45 UTC - Search in distribution

Perlbal::Manual::Install - Steps, dependencies and requirements to install Perlbal River stage two • 12 direct dependents • 12 total dependents

DORMANDO/Perlbal-1.80 - 27 Feb 2012 07:02:28 UTC - Search in distribution

Sys::Mknod - make special files River stage zero No dependents

mknod - creates special files. Why use system() when you can use syscall()? $mode is the resultant file mode, and defaults to 0666. It does not override your umask....

SAMV/Sys-Mknod-0.02 - 05 Jan 2004 06:01:47 UTC - Search in distribution
27 results (0.069 seconds)